ReadResponse

data class ReadResponse(base64Encoded: Boolean?, data: String, eof: Boolean)

Represents response frame that is returned from IO#read operation call. Read a chunk of the stream

See also

Constructors

ReadResponse
Link copied to clipboard
fun ReadResponse(base64Encoded: Boolean? = null, data: String, eof: Boolean)

Properties

base64Encoded
Link copied to clipboard
val base64Encoded: Boolean? = null
Set if the data is base64-encoded
data
Link copied to clipboard
val data: String
Data that were read.
eof
Link copied to clipboard
val eof: Boolean
Set if the end-of-file condition occured while reading.

Sources

jvm source
Link copied to clipboard